home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / pascal / makebin.com / BINDEMO2.PRG < prev    next >
Encoding:
Text File  |  1989-04-16  |  512 b   |  20 lines

  1. CLEAR
  2. ? 'Example database program to show how to load and run a Pascal EXE program'
  3. ?
  4. LOAD BINDEMO2.BIN
  5. ?
  6. BT = 'This is a message string directed from the database program'
  7. ?
  8. CALL BINDEMO2 WITH BT
  9. ?
  10. ? 'We are now back in the database program'
  11. ? BT
  12. ?
  13. BT = 'This is a new message string directed from the database program'
  14. ?
  15. CALL BINDEMO2 WITH BT
  16. ?
  17. ? 'We are now back in the database program again'
  18. ? BT
  19. ?
  20.